home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-05-31 | 1017 b | 54 lines | [TEXT/KAHL] |
- //--------------------------------------------------------------------------------------
- // About.h
- //
- // By: Tony Myles
- //
- // Copyright: © 1993 Tony Myles, All rights reserved worldwide.
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __ABOUT__
- #define __ABOUT__
-
- #ifndef __DIALOGS__
- #include <Dialogs.h>
- #endif
-
- #ifndef __EVENTS__
- #include <Events.h>
- #endif
-
- #ifndef __SPRITE__
- #include <Sprite.h>
- #endif
-
-
- enum
- {
- kAboutDialogID = 1000,
- kEarthCIconID = 300,
- kShadowCIconID = 301,
- kNumberOfShadowFrames = 3,
- kInitialSpeed = 14,
- kMaxSpeed = 15,
- kReturnChar = 0x0D,
- kEnterChar = 0x03
- };
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void DisplayAboutBox(void);
- SW_PASCAL void ShadowFrameProc(SpritePtr srcSpriteP, FramePtr curFrameP, long* curFrameIndex);
- SW_PASCAL void EarthMoveProc(SpritePtr srcSpriteP, Point* spritePoint);
- pascal Boolean AboutDialogFilter(DialogPtr aboutDialogP, EventRecord *event, short *itemHit);
-
-
- #ifdef __cplusplus
- };
- #endif
- #endif
-